home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / disk / misc / epsread.lha / eps.doc < prev   
Text File  |  1993-04-26  |  3KB  |  101 lines

  1.  
  2.           EPS -- Ensoniq EPS16 disk reader for the Amiga
  3.           ----------------------------------------------
  4.  
  5.                          by Timo Rossi
  6.  
  7.  
  8.   EPS is a program to read Ensoniq EPS16 sampling workstation disks on
  9.   the Amiga.
  10.  
  11.  
  12.   The command line options are very simple:
  13.  
  14.     EPS dir
  15.  
  16.   Shows the directory of an Ensoniq disk. The file type, name and length
  17.   in blocks is shown for each file. File type of instrument files is 3,
  18.   other numbers are used for song/sequence/effect/macro/etc. files.
  19.  
  20.     EPS dir *inst
  21.  
  22.   Shows a directory listing of all files matching the wildcard pattern.
  23.   Wildcards can be normal Amiga 1.3-compatible '#', '?', '(', '|', ')', '%'
  24.   and also '*' in place of '#?'. 2.0-compatible '[', ']' can not be used.
  25.  
  26.  
  27.     EPS copy source destination
  28.  
  29.   Copies a file from an Ensoniq disk to an AmigaDOS disk/device.
  30.  
  31.   Source is the name of the Ensoniq file (case is not significant)
  32.  
  33.   Destination can be a file or a directory name on the Amiga
  34.   (as in AmigaDOS copy-command).
  35.  
  36.   Source can also be a wildcard pattern. In that case destination
  37.   must be a directory.
  38.  
  39.   For example:
  40.  
  41.     EPS copy "unnamed inst" ram:foo.bar
  42.  
  43.   Copies the file `unnamed inst' from an Ensoniq disk to a file named 'foo.bar'
  44.   on the Amiga RAM disk.
  45.  
  46.     EPS copy *inst ""
  47.  
  48.   Copies all files on an Ensoniq disk with names ending with 'instr' to
  49.   the current directory.
  50.  
  51.  
  52.   The default disk unit is 0 (DF0:)
  53.   You can change the unit by using the -u -option
  54.  
  55.   For example:
  56.  
  57.     EPS -u1 dir
  58.  
  59.   Shows the directory of the EPS16-disk in drive 1 (DF1:)
  60.  
  61.  
  62.   EPS does not do anything to the contents of EPS16 files, it just copies
  63.   them directly. You need other tools to convert EPS16 instruments to
  64.   Amiga 8svx-sounds (EPS16 samples are 16 bit signed numbers, so the
  65.   conversion can be done with 'sox', use parameters -t raw -w -s. This
  66.   still leaves some extra data (Ensoniq instrument/effect parameters etc.)
  67.   in the beginning of the file)
  68.  
  69.  
  70.   Subdirectories on Ensoniq disks are not supported. Also, the
  71.   FAT/directory checksums on the EPS disks are not checked (however,
  72.   the low-level disk block/header CRC:s are computed and checked).
  73.  
  74.  
  75.   EPS should work with Amiga operating system versions 1.2 and newer.
  76.   However, there is a bug in trackdisk.device TD_RAWREAD/RAWWRITE-commands
  77.   in 1.2/1.3 that may cause unreliable operation.
  78.  
  79.   EPS cannot be used from the Workbench.
  80.  
  81.  
  82.   This document file describes EPS version 0.5. EPS shows version
  83.   information if you run it without any command line arguments.
  84.  
  85.   EPS is Copyright 1993 by Timo Rossi. It is freely distributable for
  86.   non-commercial purposes.
  87.  
  88.   EPS uses public domain pattern matching code written by Dave Haynie
  89.   (slightly modified to add support for the '*'-wildcard).
  90.  
  91.  
  92.   You can reach me from the following addresses:
  93.  
  94.   Timo Rossi
  95.   Mattilankatu 40 A 4
  96.   40600 Jyväskylä
  97.   FINLAND
  98.  
  99.   email: trossi@jyu.fi
  100.  
  101.